home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / SoundApps / Patchmix / Source / Arith.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  550 b   |  33 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "UnitGen.h"
  5. #import "Param.h"
  6.  
  7. static NXImage     *addimage;
  8. static NXImage     *subimage;
  9. static NXImage     *multimage;
  10. static NXImage     *divimage;
  11. static NXPoint    in0Offset;
  12. static NXPoint    in1Offset;
  13. static NXPoint    outOffset;
  14.  
  15. @interface Arith:UnitGen
  16. {
  17.     id        in0;
  18.     id        in1;
  19.     id        out;
  20.     char     operator;    // type of arithmetic operator: +, -, * or /
  21.     NXImage *image;
  22. }
  23.  
  24. - init;
  25. - remove;
  26. - (NXImage *)getImage;
  27. - move: (NXPoint *)newloc;
  28. - setAtype:(char)op;
  29. - findParamAtPoint:(NXPoint *)point;
  30. - writeUgen;
  31.  
  32. @end
  33.